home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Life 1997 February
/
Computer Life February 1997.iso
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1996-12-03
|
714b
|
53 lines
echo off
if exist %1:\df1\cdidfile.jim goto start
echo To install f1 type
echo .
echo install d
echo .
echo where d is letter of your CD drive
echo NOTE there is no colon needed
goto end
:start
cls
echo F1 Installation Menu
echo .
echo .
echo .
echo Install driver files to c:\f1demo from CD ( %1: ) [ Y / N ] ?
echo ( About half a megabyte of space required )
choice /c:yn
if errorlevel 2 goto exit
:install
echo Installing files ...
md c:\f1demo
copy df1\tof1demo\*.* c:\f1demo
c:
cd c:\f1demo
setsound
%1:
rem cd %1:\
echo .
echo .
echo Installed OK
echo .
echo .
echo .
echo Type "f1" to play game
goto end
:exit
echo INSTALLATION ABORTED
:end